Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
stacking-order
Advanced tools
Determine which of two nodes appears in front of the other.
The stacking order rules are fairly complex. Determining whether node A will render in front of node B involves much more than comparing the z-index
of the two nodes – you have to consider their parents, and which of them create new stacking contexts, which in turn depends on CSS properties like opacity
, transform
, mix-blend-mode
and various others that you probably hadn't considered.
The tie-breaker, if that doesn't yield a conclusive answer, is the position in the document (with later nodes rendering in front of earlier nodes).
npm install --save stacking-order
...or grab a copy from npmcdn.com/stacking-order.
var stackingOrder = require( 'stacking-order' );
var a = document.querySelector( '.a' );
var b = document.querySelector( '.b' );
var order = stackingOrder.compare( a, b );
// -> `1` if a is in front of b, `-1` otherwise
It's entirely possible that the algorithm used here doesn't exactly match the spec. If you find a bug, please raise an issue after reading CONTRIBUTING.md. Thanks!
MIT
made by @rich_harris
1.0.1
FAQs
Determine which of two elements is in front of the other
We found that stacking-order demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.